home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / new.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  785b  |  20 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Create new objects of various types.  Deprecated.
  5.  
  6. This module is no longer required except for backward compatibility.
  7. Objects of most types can now be created by calling the type object.
  8. '''
  9. from types import ClassType as classobj
  10. from types import FunctionType as function
  11. from types import InstanceType as instance
  12. from types import MethodType as instancemethod
  13. from types import ModuleType as module
  14.  
  15. try:
  16.     from types import CodeType as code
  17. except ImportError:
  18.     pass
  19.  
  20.